home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / bin / net-snmp-config < prev    next >
Text File  |  2008-09-22  |  27KB  |  735 lines

  1. #!/bin/bash
  2. #
  3. # $Id: net-snmp-config.in 16569 2007-06-29 22:18:27Z tanders $
  4. #
  5. # this shell script is designed to merely dump the configuration
  6. # information about how the net-snmp package was compiled.  The
  7. # information is particularily useful for applications that need to
  8. # link against the net-snmp libraries and hence must know about any
  9. # other libraries that must be linked in as well.
  10.  
  11. check_build_dir()
  12. {
  13.       build_dir=$1
  14.  
  15.       if test "x$build_dir" = "x" ; then
  16.          echo "You must specify a build directory."
  17.          exit 1
  18.       fi
  19.       # is it the src dir?
  20.       if test -f $build_dir/net-snmp-config.in ; then
  21.          return
  22.       fi
  23.       # make sure we can find build dir
  24.       if test ! -d $build_dir/snmplib/.libs ; then
  25.          echo "$build_dir does not appear to be a build directory."
  26.          exit 1
  27.       fi
  28. }
  29.  
  30. prefix=/usr
  31. exec_prefix=/usr
  32. includedir=${prefix}/include
  33. libdir=${exec_prefix}/lib
  34. NSC_LDFLAGS="-Wl,-Bsymbolic-functions"
  35. NSC_INCLUDEDIR=${includedir}
  36. NSC_LIBDIR=-L${libdir}
  37. NSC_LIBS=""
  38. NSC_AGENTLIBS=" -Wl,-E"
  39. NSC_PREFIX=$prefix
  40. NSC_EXEC_PREFIX=$exec_prefix
  41. NSC_SRCDIR=.
  42. NSC_INCDIR=${NSC_PREFIX}/include
  43. NSC_BASE_SUBAGENT_LIBS="-lnetsnmpagent -lnetsnmphelpers -lnetsnmp"
  44. NSC_BASE_AGENT_LIBS="-lnetsnmpmibs -lnetsnmpagent -lnetsnmphelpers -lnetsnmp"
  45. NSC_SRC_LIBDIRS="agent/.libs snmplib/.libs agent/helpers/.libs"
  46. NSC_SRC_LIBDEPS="agent/.libs/libnetsnmpmibs.a agent/.libs/libnetsnmpagent.a agent/helpers/.libs/libnetsnmphelpers.a snmplib/.libs/libnetsnmp.a"
  47.  
  48. if test "x$NSC_SRCDIR" = "x." ; then
  49.    NSC_SRCDIR="NET-SNMP-SOURCE-DIR"
  50. fi
  51.  
  52. if test "x$1" = "x"; then
  53.   usage="yes"
  54. else
  55.   while test "x$done" = "x" -a "x$1" != "x" -a "x$usage" != "xyes"; do
  56.   case "$1" in
  57.     -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
  58.     *) optarg= ;;
  59.   esac
  60.  
  61.   case $1 in
  62.     --prefix=*)
  63.       prefix=$optarg
  64.       NSC_PREFIX=${prefix}
  65.       NSC_INCLUDEDIR=${prefix}/include
  66.       NSC_LIBDIR=-L${prefix}/lib
  67.       ;;
  68.  
  69.     --exec-prefix=*)
  70.       exec_prefix=$optarg
  71.       NSC_EXEC_PREFIX=${exec_prefix}
  72.       NSC_LIBDIR=-L${exec_prefix}/lib
  73.       ;;
  74.  
  75.     --debug-tokens|--deb*|--dbg*)
  76.       echo "find $NSC_SRCDIR -name \"*.c\" -print | xargs grep DEBUGMSGT | grep \\\" | cut -f 2 -d\\\" | sort -u"
  77.       if test "x$NSC_SRCDIR" != "xNET-SNMP-SOURCE-DIR" ; then
  78.         /usr/bin/find $NSC_SRCDIR -name "*.c" -print | xargs grep DEBUGMSGT | grep \" | cut -f 2 -d\" | sort -u
  79.       fi
  80.       ;;
  81.     --indent-options|--in*)
  82.       echo "indent -orig -nbc -bap -nut -nfca `(cd $NSC_INCDIR/net-snmp; perl -n -e 'print "-T $1 " if (/}\s*(netsnmp_\w+)\s*;/);' */*.h)`"
  83.       ;;
  84.     --configure-options|--con*)
  85.       echo " '--build=i486-linux-gnu' '--includedir=${prefix}/include' '--mandir=${prefix}/share/man' '--infodir=${prefix}/share/info' '--localstatedir=/var' '--libexecdir=${prefix}/lib/net-snmp' '--disable-maintainer-mode' '--disable-dependency-tracking' '--srcdir=.' '--prefix=/usr' '--sysconfdir=/etc' '--mandir=/usr/share/man' '--with-persistent-directory=/var/lib/snmp' '--enable-ucd-snmp-compatibility' '--enable-shared' '--with-cflags=-g -O2 -g -Wall -O2 -DNETSNMP_USE_INLINE' '--with-perl-modules=INSTALLDIRS=vendor' '--enable-as-needed' '--enable-ipv6' '--with-logfile=none' '--without-rpm' '--with-libwrap' '--with-openssl' '--without-dmalloc' '--without-efence' '--without-rsaref' '--with-sys-contact=root' '--with-sys-location=Unknown' '--with-mib-modules=host smux ucd-snmp/dlmod ucd-snmp/diskio ucd-snmp/lmSensors ' '--enable-mfd-rewrites' '--with-mnttab=/etc/mtab' '--with-defaults' 'build_alias=i486-linux-gnu' 'CC=cc' 'CFLAGS=-g -O2 -g -Wall -O2' 'LDFLAGS=-Wl,-Bsymbolic-functions' 'CPPFLAGS='"
  86.       ;;
  87.     --snmpd-module-list|--mod*)
  88. echo  ucd-snmp/dlmod ucd-snmp/diskio ucd-snmp/lmSensors host/hr_system host/hr_storage host/hr_device host/hr_other host/hr_proc host/hr_network host/hr_print host/hr_disk host/hr_partition host/hr_filesys host/hr_swrun host/hr_swinst smux/smux util_funcs snmpv3/snmpEngine snmpv3/snmpMPDStats snmpv3/usmStats snmpv3/usmConf snmpv3/usmUser mibII/system_mib mibII/sysORTable mibII/at mibII/ip mibII/snmp_mib mibII/tcp mibII/icmp mibII/udp mibII/vacm_vars mibII/setSerialNo mibII/ipv6 ucd-snmp/proc ucd-snmp/versioninfo ucd-snmp/pass ucd-snmp/pass_persist ucd-snmp/disk ucd-snmp/loadave agent/extend ucd-snmp/errormib ucd-snmp/file ucd-snmp/proxy ucd-snmp/logmatch ucd-snmp/memory ucd-snmp/vmstat notification/snmpNotifyTable notification/snmpNotifyFilterProfileTable notification-log-mib/notification_log target/snmpTargetAddrEntry target/snmpTargetParamsEntry target/target target/target_counters agent/nsTransactionTable agent/nsModuleTable agent/nsDebug agent/nsCache agent/nsLogging agent/nsVacmAccessTable agentx/master agentx/subagent disman/event/mteScalars disman/event/mteTrigger disman/event/mteTriggerTable disman/event/mteTriggerDeltaTable disman/event/mteTriggerExistenceTable disman/event/mteTriggerBooleanTable disman/event/mteTriggerThresholdTable disman/event/mteTriggerConf disman/event/mteEvent disman/event/mteEventTable disman/event/mteEventSetTable disman/event/mteEventNotificationTable disman/event/mteEventConf disman/event/mteObjects disman/event/mteObjectsTable disman/event/mteObjectsConf disman/schedule/schedCore disman/schedule/schedConf disman/schedule/schedTable utilities/override utilities/execute utilities/iquery hardware/memory/hw_mem hardware/memory/memory_linux hardware/cpu/cpu hardware/cpu/cpu_linux mibII/kernel_linux mibII/ipAddr mibII/var_route mibII/route_write mibII/tcpTable mibII/udpTable mibII/vacm_context mibII/vacm_conf ip-mib/ip_scalars header_complex snmp-notification-mib/snmpNotifyFilterTable/snmpNotifyFilterTable agentx/protocol agentx/client agentx/master_admin agentx/agentx_config if-mib/ifTable/ifTable if-mib/ifXTable/ifXTable ip-mib/ipAddressTable/ipAddressTable ip-mib/inetNetToMediaTable/inetNetToMediaTable ip-mib/inetNetToMediaTable/inetNetToMediaTable_interface ip-mib/inetNetToMediaTable/inetNetToMediaTable_data_access ip-mib/ipSystemStatsTable/ipSystemStatsTable ip-mib/ipSystemStatsTable/ipSystemStatsTable_interface ip-mib/ipSystemStatsTable/ipSystemStatsTable_data_access ip-forward-mib/ipCidrRouteTable/ipCidrRouteTable ip-forward-mib/inetCidrRouteTable/inetCidrRouteTable tcp-mib/tcpConnectionTable/tcpConnectionTable tcp-mib/tcpListenerTable/tcpListenerTable udp-mib/udpEndpointTable/udpEndpointTable snmp-notification-mib/snmpNotifyFilterTable/snmpNotifyFilterTable_interface snmp-notification-mib/snmpNotifyFilterTable/snmpNotifyFilterTable_data_access if-mib/data_access/interface if-mib/ifTable/ifTable_interface if-mib/ifTable/ifTable_data_access if-mib/ifXTable/ifXTable_interface if-mib/ifXTable/ifXTable_data_access ip-mib/ipAddressTable/ipAddressTable_interface ip-mib/ipAddressTable/ipAddressTable_data_access ip-mib/data_access/arp_common ip-mib/data_access/arp_linux ip-mib/data_access/systemstats_common ip-mib/data_access/systemstats_linux ip-mib/data_access/scalars_linux ip-forward-mib/ipCidrRouteTable/ipCidrRouteTable_interface ip-forward-mib/ipCidrRouteTable/ipCidrRouteTable_data_access ip-forward-mib/inetCidrRouteTable/inetCidrRouteTable_interface ip-forward-mib/inetCidrRouteTable/inetCidrRouteTable_data_access tcp-mib/data_access/tcpConn_common tcp-mib/data_access/tcpConn_linux tcp-mib/tcpConnectionTable/tcpConnectionTable_interface tcp-mib/tcpConnectionTable/tcpConnectionTable_data_access tcp-mib/tcpListenerTable/tcpListenerTable_interface tcp-mib/tcpListenerTable/tcpListenerTable_data_access udp-mib/udpEndpointTable/udpEndpointTable_interface udp-mib/udpEndpointTable/udpEndpointTable_data_access if-mib/data_access/interface_linux if-mib/data_access/interface_ioctl ip-mib/data_access/ipaddress_common ip-mib/data_access/ipaddress_linux ip-forward-mib/data_access/route_common ip-forward-mib/data_access/route_linux ip-forward-mib/data_access/route_ioctl udp-mib/data_access/udp_endpoint_common udp-mib/data_access/udp_endpoint_linux ip-mib/data_access/ipaddress_ioctl      ;;
  89.     --default-mibs|--mibs|--MIBS)
  90.       echo :HOST-RESOURCES-MIB:HOST-RESOURCES-TYPES:UCD-DLMOD-MIB:UCD-DISKIO-MIB:LM-SENSORS-MIB:IP-MIB:IF-MIB:TCP-MIB:UDP-MIB:SNMPv2-MIB:RFC1213-MIB:NOTIFICATION-LOG-MIB:DISMAN-EVENT-MIB:DISMAN-SCHEDULE-MIB:UCD-SNMP-MIB:UCD-DEMO-MIB:SNMP-TARGET-MIB:NET-SNMP-AGENT-MIB:SNMP-FRAMEWORK-MIB:SNMP-MPD-MIB:SNMP-USER-BASED-SM-MIB:SNMP-VIEW-BASED-ACM-MIB:SNMP-COMMUNITY-MIB:IPV6-ICMP-MIB:IPV6-MIB:IPV6-TCP-MIB:IPV6-UDP-MIB:IP-FORWARD-MIB:NET-SNMP-EXTEND-MIB:SNMP-NOTIFICATION-MIB:SNMPv2-TM:NET-SNMP-VACM-MIB
  91.       ;;
  92.     --default-mibdirs|--mibdirs|--MIBDIRS)
  93.       echo $HOME/.snmp/mibs:/usr/share/snmp/mibs
  94.       ;;
  95.     --snmpconfpath|--SNMPCONFPATH)
  96.       echo "/etc/snmp:/usr/share/snmp:/usr/lib/snmp:$HOME/.snmp:/var/lib/snmp"
  97.       ;;
  98.     --persistent-directory|--persistent-dir)
  99.       echo /var/lib/snmp
  100.       ;;
  101.     --perlprog|--perl)
  102.       echo /usr/bin/perl
  103.       ;;
  104.     #################################################### compile
  105.     --base-cflags)
  106.       echo -DNETSNMP_ENABLE_IPV6 -g -O2 -g -Wall -O2 -DNETSNMP_USE_INLINE -Ulinux -Dlinux=linux   -D_REENTRANT -D_GNU_SOURCE -DDEBIAN -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -I/usr/lib/perl/5.10/CORE  -I${NSC_INCLUDEDIR}
  107.       ;;
  108.     --cflags|--cf*)
  109.       echo -DNETSNMP_ENABLE_IPV6 -g -O2 -g -Wall -O2 -DNETSNMP_USE_INLINE -Ulinux -Dlinux=linux    -D_REENTRANT -D_GNU_SOURCE -DDEBIAN -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -I/usr/lib/perl/5.10/CORE  -I. -I${NSC_INCLUDEDIR}
  110.       ;;
  111.     --srcdir)
  112.       echo $NSC_SRCDIR
  113.       ;;
  114.     #################################################### linking
  115.     --libdir|--lib-dir)
  116.       echo $NSC_LIBDIR
  117.       ;;
  118.     --ldflags|--ld*)
  119.       echo $NSC_LDFLAGS
  120.       ;;
  121.     --build-lib-dirs)
  122.       shift
  123.       build_dir=$1
  124.       check_build_dir $build_dir
  125.       for dir in $NSC_SRC_LIBDIRS; do
  126.           result="$result -L$build_dir/$dir"
  127.       done
  128.       echo $result
  129.       ;;
  130.     --build-lib-deps)
  131.       shift
  132.       build_dir=$1
  133.       check_build_dir $build_dir
  134.       for dir in $NSC_SRC_LIBDEPS; do
  135.           result="$result $build_dir/$dir"
  136.       done
  137.       echo $result
  138.       ;;
  139.     --build-includes)
  140.       shift
  141.       build_dir=$1
  142.       check_build_dir $build_dir
  143.       result="-I$build_dir/include"
  144.       if test "$build_dir" != "$NSC_SRCDIR" -a "$NSC_SRCDIR" != "NET-SNMP-SOURCE-DIR"
  145.       then
  146.           result="$result -I$NSC_SRCDIR/include"
  147.       fi
  148.       echo $result
  149.       ;;
  150.     #################################################### client lib
  151.     --libs)
  152.       # use this one == --netsnmp-libs + --external-libs
  153.       echo $NSC_LDFLAGS $NSC_LIBDIR -lnetsnmp $NSC_LIBS
  154.       ;;
  155.     --netsnmp-libs)
  156.       echo $NSC_LIBDIR -lnetsnmp
  157.       ;;
  158.     --external-libs)
  159.       echo $NSC_LDFLAGS $NSC_LIBS
  160.       ;;
  161.     #################################################### agent lib
  162.     --base-agent-libs)
  163.       echo $NSC_BASE_AGENT_LIBS
  164.       ;;
  165.     --base-subagent-libs)
  166.       echo $NSC_BASE_SUBAGENT_LIBS
  167.       ;;
  168.     --agent-libs)
  169.       # use this one == --netsnmp-agent-libs + --external-libs
  170.       echo $NSC_LDFLAGS $NSC_LIBDIR $NSC_BASE_AGENT_LIBS $NSC_AGENTLIBS
  171.       ;;
  172.     --netsnmp-agent-libs)
  173.       echo $NSC_LIBDIR $NSC_BASE_AGENT_LIBS
  174.       ;;
  175.     --external-agent-libs)
  176.       echo $NSC_LDFLAGS $NSC_AGENTLIBS
  177.       ;;
  178.     ####################################################
  179.     --version|--ver*)
  180.       echo 5.4.1
  181.       ;;
  182.     --help)
  183.       usage="yes"
  184.       ;;
  185.     --prefix|--pre*)
  186.       echo $NSC_PREFIX
  187.       ;;
  188.     --exec-prefix)
  189.       echo $NSC_EXEC_PREFIX
  190.       ;;
  191.     ####################################################
  192.     --create-snmpv3-user)
  193.       if /bin/ps -e | egrep ' snmpd *$' > /dev/null 2>&1 ; then
  194.          echo "Apparently at least one snmpd demon is already running."
  195.          echo "You must stop them in order to use this command."
  196.          exit 1
  197.       fi
  198.  
  199.       Aalgorithm="MD5"
  200.       Xalgorithm="DES"
  201.       token=rwuser
  202.       shift
  203.       while test "x$done" = "x" -a "x$1" != "x" ; do
  204.     case $1 in
  205.         -A|-a)
  206.         shift
  207.         if test "x$1" = "x" ; then
  208.             echo "You must specify an authentication algorithm or pass phrase"
  209.             exit 1
  210.         fi
  211.             case $1 in
  212.                 MD5|SHA)
  213.             Aalgorithm=$1
  214.             shift
  215.             ;;
  216.                 md5|sha)
  217.             Aalgorithm=`echo $1 | tr a-z A-Z`
  218.             shift
  219.             ;;
  220.                 *)
  221.             apassphrase=$1
  222.             shift
  223.             ;;
  224.         esac
  225.         ;;
  226.         -X|-x)
  227.         shift
  228.         if test "x$1" = "x" ; then
  229.             echo "You must specify an encryption algorithm or pass phrase"
  230.             exit 1
  231.         fi
  232.             case $1 in
  233.                 DES|AES|AES128)
  234.             Xalgorithm=$1
  235.             shift
  236.             ;;
  237.                 des|aes|aes128)
  238.             Xalgorithm=`echo $1 | tr a-z A-Z`
  239.             shift
  240.             ;;
  241.                 *)
  242.             xpassphrase=$1
  243.             shift
  244.             ;;
  245.         esac
  246.         ;;
  247.         -ro)
  248.             token="rouser"
  249.         shift
  250.         ;;
  251.          -*)
  252.         echo "unknown suboption to --create-snmpv3-user: $1"
  253.         exit 1
  254.         ;;
  255.         *)
  256.             done=1
  257.         ;;
  258.     esac
  259.       done
  260.       
  261.       if test "x$1" = "x" ; then
  262.           prompt=yes
  263.       echo "Enter a SNMPv3 user name to create: "
  264.       read user
  265.       else
  266.           user=$1
  267.           shift
  268.       fi
  269.       if test "x$user" = "x" ; then
  270.           echo "You must specify a user name"
  271.       exit 1
  272.       fi
  273.  
  274.       if test "x$apassphrase" = "x" ; then
  275.           prompt=yes
  276.       echo "Enter authentication pass-phrase: "
  277.       read apassphrase
  278.       fi
  279.       if test "x$apassphrase" = "x" ; then
  280.           echo "You must specify an authentication pass-phrase"
  281.       exit 1
  282.       fi
  283.  
  284.       if test "x$prompt" = "xyes" -a "x$xpassphrase" = "x" ; then
  285.       echo "Enter encryption pass-phrase: "
  286.       echo "  [press return to reuse the authentication pass-phrase]"
  287.       read xpassphrase
  288.       fi
  289.  
  290.       outdir="/var/lib/snmp"
  291.       outfile="$outdir/snmpd.conf"
  292.       line="createUser $user $Aalgorithm \"$apassphrase\" $Xalgorithm $xpassphrase"
  293.       echo "adding the following line to $outfile:"
  294.       echo "  " $line
  295.       # in case it hasn't ever been started yet, start it.
  296.       if test ! -d $outdir ; then
  297.           mkdir $outdir
  298.       fi
  299.       if test ! -d $outfile ; then
  300.           touch $outfile
  301.       fi
  302.       echo $line >> $outfile
  303.  
  304.       outfile="${prefix}/share/snmp/snmpd.conf"
  305.       line="$token $user"
  306.       echo "adding the following line to $outfile:"
  307.       echo "  " $line
  308.       if test ! -d $outfile ; then
  309.           touch $outfile
  310.       fi
  311.       echo $line >> $outfile
  312.       ;;
  313.  
  314.     ####################################################
  315.     --compile-subagent)
  316.       shift
  317.       while test "x$done" = "x" -a "x$1" != "x" ; do
  318.     case $1 in
  319.             --norm)
  320.             norm=1
  321.             shift
  322.         ;;
  323.             --cflags)
  324.             shift
  325.             if test "x$1" = "x" ; then
  326.                 echo "You must specify the extra cflags"
  327.                 exit 1
  328.             fi
  329.             cflags=$1
  330.             echo "setting extra cflags: $cflags"
  331.             shift
  332.         ;;
  333.             --ldflags)
  334.             shift
  335.             if test "x$1" = "x" ; then
  336.                 echo "You must specify the extra ldflags"
  337.                 exit 1
  338.             fi
  339.             ldflags=$1
  340.             echo "setting extra ldflags: $ldflags"
  341.             shift
  342.         ;;
  343.          --*)
  344.         echo "unknown suboption to --compile-subagent: $1"
  345.         exit 1
  346.         ;;
  347.         *)
  348.                 if test "x$outname" = "x"; then
  349.                   outname=$1
  350.                   shift
  351.                 else
  352.               done=1
  353.                 fi
  354.         ;;
  355.     esac
  356.       done
  357.       tmpfile=netsnmptmp.$$.c
  358.       if test -f $tmpfile; then
  359.     echo "Ack.  Can't create $tmpfile: already exists"
  360.     exit 1
  361.       fi
  362.       echo "generating the tmporary code file: $tmpfile"
  363.       rm -f $tmpfile
  364.       cat > $tmpfile <<EOF
  365. /* generated from net-snmp-config */
  366. #include <net-snmp/net-snmp-config.h>
  367. #ifdef HAVE_SIGNAL
  368. #include <signal.h>
  369. #endif /* HAVE_SIGNAL */
  370. #include <net-snmp/net-snmp-includes.h>
  371. #include <net-snmp/agent/net-snmp-agent-includes.h>
  372. EOF
  373.  
  374.     # If we were only given a single filename
  375.     # (and no explicit output name)
  376.     # then use that as the base of the output name
  377.     #
  378.     # If we weren't even given that, then bomb out
  379.     if test "x$1" = "x"; then
  380.       if test "x$outname" = "x"; then
  381.         echo "No MIB module codefile specified"
  382.         rm -f $tmpfile
  383.         exit 1
  384.       else
  385.         cfiles=$outname
  386.         outname=`basename $cfiles | sed 's/\.[co]$//'`
  387.         if test -f $outname.h; then
  388.           if grep "init_$outname" $outname.h; then
  389.             echo "  #include \"$outname.h\"" >> $tmpfile
  390.           fi
  391.         fi
  392.       fi
  393.     fi
  394.  
  395.     # add include files
  396.     while test "$1" != ""; do
  397.       cfiles="$cfiles $1"
  398.       name=`basename $1 | sed 's/\.[co]$//'`
  399.       if test -f $name.h; then
  400.         if grep "init_$name" $name.h; then
  401.           echo "  #include \"$name.h\"" >> $tmpfile
  402.         fi
  403.       fi
  404.       shift
  405.     done
  406.  
  407.       cat >> $tmpfile <<EOF
  408. const char *app_name = "$outname";
  409.  
  410. extern int netsnmp_running;
  411.  
  412. #ifdef __GNUC__
  413. #define UNUSED __attribute__((unused))
  414. #else
  415. #define UNUSED
  416. #endif
  417.  
  418. RETSIGTYPE
  419. stop_server(UNUSED int a) {
  420.     netsnmp_running = 0;
  421. }
  422.  
  423. static void
  424. usage(const char *prog)
  425. {
  426.     fprintf(stderr,
  427.             "USAGE: %s [OPTIONS]\n"
  428.             "\n"
  429.             "OPTIONS:\n", prog);
  430.  
  431.     fprintf(stderr,
  432.             "  -d\t\t\tdump all traffic\n"
  433.             "  -D TOKEN[,...]\tturn on debugging output for the specified "
  434.             "TOKENs\n"
  435.             "\t\t\t   (ALL gives extremely verbose debugging output)\n"
  436.             "  -f\t\t\tDo not fork() from the calling shell.\n"
  437.             "  -h\t\t\tdisplay this help message\n"
  438.             "  -H\t\t\tdisplay a list of configuration file directives\n"
  439.             "  -L LOGOPTS\t\tToggle various defaults controlling logging:\n");
  440.     snmp_log_options_usage("\t\t\t  ", stderr);
  441. #ifndef DISABLE_MIB_LOADING
  442.     fprintf(stderr,
  443.             "  -m MIB[:...]\t\tload given list of MIBs (ALL loads "
  444.             "everything)\n"
  445.             "  -M DIR[:...]\t\tlook in given list of directories for MIBs\n");
  446. #endif /* DISABLE_MIB_LOADING */
  447. #ifndef DISABLE_MIB_LOADING
  448.     fprintf(stderr,
  449.             "  -P MIBOPTS\t\tToggle various defaults controlling mib "
  450.             "parsing:\n");
  451.     snmp_mib_toggle_options_usage("\t\t\t  ", stderr);
  452. #endif /* DISABLE_MIB_LOADING */
  453.     fprintf(stderr,
  454.             "  -v\t\t\tdisplay package version number\n"
  455.             "  -x TRANSPORT\tconnect to master agent using TRANSPORT\n");
  456.     exit(1);
  457. }
  458.  
  459. static void
  460. version(void)
  461. {
  462.     fprintf(stderr, "NET-SNMP version: %s\n", netsnmp_get_version());
  463.     exit(0);
  464. }
  465.  
  466. int
  467. main (int argc, char **argv)
  468. {
  469.   int arg;
  470.   char* cp = NULL;
  471.   int dont_fork = 0, do_help = 0;
  472.  
  473.   while ((arg = getopt(argc, argv, "dD:fhHL:"
  474. #ifndef DISABLE_MIB_LOADING
  475.                        "m:M:"
  476. #endif /* DISABLE_MIB_LOADING */
  477.                        "n:"
  478. #ifndef DISABLE_MIB_LOADING
  479.                        "P:"
  480. #endif /* DISABLE_MIB_LOADING */
  481.                        "vx:")) != EOF) {
  482.     switch (arg) {
  483.     case 'd':
  484.       netsnmp_ds_set_boolean(NETSNMP_DS_LIBRARY_ID,
  485.                              NETSNMP_DS_LIB_DUMP_PACKET, 1);
  486.       break;
  487.  
  488.     case 'D':
  489.       debug_register_tokens(optarg);
  490.       snmp_set_do_debugging(1);
  491.       break;
  492.  
  493.     case 'f':
  494.       dont_fork = 1;
  495.       break;
  496.  
  497.     case 'h':
  498.       usage(argv[0]);
  499.       break;
  500.  
  501.     case 'H':
  502.       do_help = 1;
  503.       break;
  504.  
  505.     case 'L':
  506.       if (snmp_log_options(optarg, argc, argv) < 0) {
  507.         exit(1);
  508.       }
  509.       break;
  510.  
  511. #ifndef DISABLE_MIB_LOADING
  512.     case 'm':
  513.       if (optarg != NULL) {
  514.         setenv("MIBS", optarg, 1);
  515.       } else {
  516.         usage(argv[0]);
  517.       }
  518.       break;
  519.  
  520.     case 'M':
  521.       if (optarg != NULL) {
  522.         setenv("MIBDIRS", optarg, 1);
  523.       } else {
  524.         usage(argv[0]);
  525.       }
  526.       break;
  527. #endif /* DISABLE_MIB_LOADING */
  528.  
  529.     case 'n':
  530.       if (optarg != NULL) {
  531.         app_name = optarg;
  532.         netsnmp_ds_set_string(NETSNMP_DS_LIBRARY_ID,
  533.                               NETSNMP_DS_LIB_APPTYPE, app_name);
  534.       } else {
  535.         usage(argv[0]);
  536.       }
  537.       break;
  538.  
  539. #ifndef DISABLE_MIB_LOADING
  540.     case 'P':
  541.       cp = snmp_mib_toggle_options(optarg);
  542.       if (cp != NULL) {
  543.         fprintf(stderr, "Unknown parser option to -P: %c.\n", *cp);
  544.         usage(argv[0]);
  545.       }
  546.       break;
  547. #endif /* DISABLE_MIB_LOADING */
  548.  
  549.     case 'v':
  550.       version();
  551.       break;
  552.  
  553.     case 'x':
  554.       if (optarg != NULL) {
  555.         netsnmp_ds_set_string(NETSNMP_DS_APPLICATION_ID,
  556.                               NETSNMP_DS_AGENT_X_SOCKET, optarg);
  557.       } else {
  558.         usage(argv[0]);
  559.       }
  560.       break;
  561.  
  562.     default:
  563.       fprintf(stderr, "invalid option: -%c\n", arg);
  564.       usage(argv[0]);
  565.       break;
  566.     }
  567.   }
  568.  
  569.   if (do_help) {
  570.     netsnmp_ds_set_boolean(NETSNMP_DS_APPLICATION_ID,
  571.                            NETSNMP_DS_AGENT_NO_ROOT_ACCESS, 1);
  572.   } else {
  573.     /* we are a subagent */
  574.     netsnmp_ds_set_boolean(NETSNMP_DS_APPLICATION_ID,
  575.                            NETSNMP_DS_AGENT_ROLE, 1);
  576.  
  577.     if (!dont_fork) {
  578.       if (netsnmp_daemonize(1, snmp_stderrlog_status()) != 0)
  579.         exit(1);
  580.     }
  581.  
  582.     /* initialize tcpip, if necessary */
  583.     SOCK_STARTUP;
  584.   }
  585.  
  586.   /* initialize the agent library */
  587.   init_agent(app_name);
  588.  
  589.   /* initialize your mib code here */
  590. EOF
  591.  
  592.     # add init routines
  593.     for i in $cfiles ; do
  594.       name=`basename $i | sed 's/\.[co]$//'`
  595.       echo checking for init_$name in $i
  596.       if grep "init_$name" $i ; then
  597.         echo "  init_${name}();" >> $tmpfile
  598.       fi
  599.       shift
  600.     done
  601.  
  602.     # finish file
  603.     cat >> $tmpfile <<EOF
  604.  
  605.   /* $outname will be used to read $outname.conf files. */
  606.   init_snmp("$outname");
  607.  
  608.   if (do_help) {
  609.     fprintf(stderr, "Configuration directives understood:\n");
  610.     read_config_print_usage("  ");
  611.     exit(0);
  612.   }
  613.  
  614.   /* In case we received a request to stop (kill -TERM or kill -INT) */
  615.   netsnmp_running = 1;
  616. #ifdef SIGTERM
  617.   signal(SIGTERM, stop_server);
  618. #endif
  619. #ifdef SIGINT
  620.   signal(SIGINT, stop_server);
  621. #endif
  622.  
  623.   /* main loop here... */
  624.   while(netsnmp_running) {
  625.     agent_check_and_process(1);
  626.   }
  627.  
  628.   /* at shutdown time */
  629.   snmp_shutdown(app_name);
  630.   SOCK_CLEANUP;
  631.   exit(0);
  632. }
  633.  
  634. EOF
  635.       if test "$?" != 0 -o ! -f "$tmpfile" ; then
  636.         echo "Ack.  Can't create $tmpfile."
  637.     exit 1
  638.       fi
  639.       cmd="cc $cflags -DNETSNMP_ENABLE_IPV6 -g -O2 -g -Wall -O2 -DNETSNMP_USE_INLINE -Ulinux -Dlinux=linux  -I. -I${NSC_INCLUDEDIR} -o $outname $tmpfile $cfiles $NSC_LDFLAGS $NSC_LIBDIR $NSC_BASE_AGENT_LIBS $NSC_AGENTLIBS $ldflags"
  640.       echo "running: $cmd"
  641.       `$cmd`
  642.       if test "x$norm" != "x1" ; then
  643.         echo "removing the tmporary code file: $tmpfile"
  644.         rm -f $tmpfile
  645.       else
  646.         echo "leaving the tmporary code file: $tmpfile"
  647.       fi
  648.       if test -f $outname ; then
  649.         echo "subagent program $outname created"
  650.       fi
  651.       ;;
  652.  
  653.     *)
  654.       echo "unknown option $1"
  655.       usage="yes"
  656.       ;;
  657.   esac
  658.   shift
  659.   done
  660. fi
  661.  
  662. if test "x$usage" = "xyes"; then
  663.   echo ""
  664.   echo "Usage:"
  665.   echo "  net-snmp-config [--cflags] [--agent-libs] [--libs] [--version]"
  666.   echo "                  ... [see below for complete flag list]"
  667.   echo ""
  668.   echo "    --version         displays the net-snmp version number"
  669.   echo "    --indent-options  displays the indent options from the Coding Style"
  670.   echo "    --debug-tokens    displays a example command line to search to source"
  671.   echo "                      code for a list of available debug tokens"
  672.   echo ""
  673.   echo "  SNMP Setup commands:"
  674.   echo ""
  675.   echo "    --create-snmpv3-user [-ro] [-A authpass] [-X privpass]"
  676.   echo "                         [-a MD5|SHA] [-x DES|AES] [username]"
  677.   echo ""
  678.   echo "  These options produce the various compilation flags needed when"
  679.   echo "  building external SNMP applications:"
  680.   echo ""
  681.   echo "    --base-cflags     lists additional compilation flags needed"
  682.   echo "    --cflags          lists additional compilation flags needed"
  683.   echo "                      (includes -I. and extra developer warning flags)"
  684.   echo ""
  685.   echo "  These options produce the various link flags needed when"
  686.   echo "  building external SNMP applications:"
  687.   echo ""
  688.   echo "    --libs            lists libraries needed for building applications"
  689.   echo "    --agent-libs      lists libraries needed for building subagents"
  690.   echo ""
  691.   echo "  These options produce various link flags broken down into parts."
  692.   echo "  (Most of the time the simple options above should be used.)"
  693.   echo ""
  694.   echo "    --libdir              path to netsnmp libraries"
  695.   echo ""
  696.   echo "    --base-agent-libs     netsnmp specific agent libraries"
  697.   echo ""
  698.   echo "    --netsnmp-libs        netsnmp specific libraries (with path)"
  699.   echo "    --netsnmp-agent-libs  netsnmp specific agent libraries (with path)"
  700.   echo ""
  701.   echo "    --ldflags             link flags for external libraries"
  702.   echo "    --external-libs       external libraries needed by netsnmp libs"
  703.   echo "    --external-agent-libs external libraries needed by netsnmp agent libs"
  704.   echo ""
  705.   echo "  These options produce various link flags used when linking an"
  706.   echo "  external application against an uninstalled build directory."
  707.   echo ""
  708.   echo "    --build-includes      include path to build/source includes"
  709.   echo "    --build-lib-dirs      link path to libraries"
  710.   echo "    --build-lib-deps      path to libraries for dependency target"
  711.   echo ""
  712.   echo "  Automatted subagent building (produces an OUTPUTNAME binary file):"
  713.   echo "  [this feature has not been tested very well yet.  use at your risk.]"
  714.   echo ""
  715.   echo "    --compile-subagent OUTPUTNAME [--norm] [--cflags flags]"
  716.   echo "                                  [--ldflags flags] mibmodule1.c [...]]"
  717.   echo ""
  718.   echo "         --norm           leave the generated .c file around to read."
  719.   echo "         --cflags flags   extra cflags to use (e.g. -I...)."
  720.   echo "         --ldflags flags  extra ld flags to use (e.g. -L... -l...)."
  721.   echo ""
  722.   echo "  Details on how the net-snmp package was compiled:"
  723.   echo ""
  724.   echo "    --configure-options   display original configure arguments"
  725.   echo "    --prefix              display the installation prefix"
  726.   echo "    --snmpd-module-list   display the modules compiled into the agent"
  727.   echo "    --default-mibs        display default list of MIBs"
  728.   echo "    --default-mibdirs     display default list of MIB directories"
  729.   echo "    --snmpconfpath        display default SNMPCONFPATH"
  730.   echo "    --persistent-directory display default persistent directory"
  731.   echo "    --perlprog            display path to perl for the perl modules"
  732.   echo ""
  733.   exit
  734. fi  
  735.